home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / skel / .profile < prev   
Encoding:
Text File  |  2007-04-10  |  566 b   |  22 lines

  1. # ~/.profile: executed by the command interpreter for login shells.
  2. # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
  3. # exists.
  4. # see /usr/share/doc/bash/examples/startup-files for examples.
  5. # the files are located in the bash-doc package.
  6.  
  7. # the default umask is set in /etc/profile
  8. #umask 022
  9.  
  10. # if running bash
  11. if [ -n "$BASH_VERSION" ]; then
  12.     # include .bashrc if it exists
  13.     if [ -f ~/.bashrc ]; then
  14.     . ~/.bashrc
  15.     fi
  16. fi
  17.  
  18. # set PATH so it includes user's private bin if it exists
  19. if [ -d ~/bin ] ; then
  20.     PATH=~/bin:"${PATH}"
  21. fi
  22.